home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 Super Collection / Windows 95 Super Collection.iso / win95 / bench / thread / thrdtsts.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-13  |  416 b   |  19 lines

  1. // THRDTSTS.H -- Prototypes for thread calculations--primes and graphics.
  2.  
  3. #if !defined(_THRDTSTS_H)
  4. #define _THRDTSTS_H
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. UINT DoPrimesCalc(UINT uNumTotalPrimes, UINT uNumPrimesThisPass, LONG *pPrimesArray, UINT uNumCurrentPrimes);
  11.  
  12. UINT DoGraphics(HWND hwndDraw, UINT uTotalReps, UINT uRepsThisPass, UINT uCurrentReps);
  13.  
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17.  
  18. #endif
  19.